home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 18
/
CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso
/
CUCD
/
Graphics
/
MagnifiCAD
/
ARexx
/
Get.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-11-19
|
439b
|
31 lines
/*
** Get.rexx
**
** Description: A test of the 'Get' command,
** showing current color, print axis and view.
**
** Written by: Anders Granli
**
** Date: 11.10.96
*/
OPTIONS RESULTS
address 'MAGNIFICAD'
SAY
GETATTR COLORVALUE
colorvalue = RESULT
SAY "ColorValue:" colorvalue
GETATTR PRINTAXIS
printaxis = RESULT
SAY "PrintAxis:" printaxis
GETATTR VIEW
view = RESULT
SAY "View:" view
SAY